www.gusucode.com > VC++ 自制SQL数据库,含有服务端+客户端-源码程序 > VC++ 自制SQL数据库,含有服务端+客户端-源码程序/code/Server/AdrDlg.cpp

    //Download by http://www.NewXing.com
// AdrDlg.cpp : implementation file
//

#include "stdafx.h"
#include "miniSQL.h"
#include "AdrDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAdrDlg dialog


CAdrDlg::CAdrDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CAdrDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CAdrDlg)
	m_address = _T("");
	//}}AFX_DATA_INIT
}


void CAdrDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAdrDlg)
	DDX_Text(pDX, IDC_EDIT1, m_address);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CAdrDlg, CDialog)
	//{{AFX_MSG_MAP(CAdrDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAdrDlg message handlers